home *** CD-ROM | disk | FTP | other *** search
- .file "copy.c"
- .text
- .align 4
- / sp+20 n
- / sp+12 d
- / sp+16 s
- D_mem_copy:
- pushl %esi
- pushl %ebx
- pushl %edi
-
- movl 24(%esp),%ecx
- movl 16(%esp),%edi
- movl 20(%esp),%esi
- cld
- rep
- smovb
-
- .align 4
-
- / .ef: /
-
- popl %edi
- popl %ebx
- popl %esi
- ret
- .align 4
-
- .align 4
- .data
- /i %eax local
-
- /d %ecx local
- /s 16(%esp) local
- /n 20(%esp) local
- .text
- .data
- .globl D_mem_copy
- .text
-
-